home *** CD-ROM | disk | FTP | other *** search
/ HAKERIS 11 / HAKERIS 11.ISO / soft / development / SQLyog 3.70 / SQLyog364.exe / $PROGRAMFILES / SQLyog / SQLyog.exe / string.txt next >
Encoding:
Text File  |  2004-05-10  |  11.4 KB  |  155 lines

  1. 10235    Choose a MySQL data source
  2. 10236    From where do you want to copy data ?
  3. 10237    Choose A Data Source
  4. 10239    From where do you want to copy data ?
  5. 10241    Specify Table Copy or Query
  6. 10242    Specify whether to copy one or more table(s) or the result of the query from the data source.
  7. 10243    Type SQL Statement
  8. 10244    Type the query which will get the data.
  9. 10245    Select table(s)
  10. 10246    You can choose one or more tables to copy. You can copy the schema or data as it appears on the table or click (...) to transform the structure.
  11. 39100     Open this document
  12. 39101     Open this document
  13. 39102     Open this document
  14. 39103     Open this document
  15. 39104     Open this document
  16. 40000     Template
  17. 40002     Create a window with new connection
  18. 40003     Close the current MDI and connection
  19. 40004     Close all MDI window and connections
  20. 40005     Save the current SQL statement(s)
  21. 40006     Open a SQL file in the current connection
  22. 40007     Exit from the application
  23. 40008     Specify and save the current SQL into a file
  24. 40011     Cuts the selection and moves it to the clipboard
  25. 40012     Copies the current selection into clipboard
  26. 40013     Inserts the clipboard content at the current insertion point
  27. 40014     Undoes the last action
  28. 40016     Change selected text to uppercase
  29. 40017     Change selected text to lowercase
  30. 40018     Comment the current line
  31. 40019     Remove comment from the current line
  32. 40020     Adds the current SQL to the personal folder
  33. 40024     Arranges the windows as operlapped window
  34. 40025     Tiles the window
  35. 40026     Arrange the minimized MDI windows
  36. 40027     Displays the program information and copyright
  37. 40028     List of keyboard shortcuts in SQLyog
  38. 40046     Export table data and structure in SQL
  39. 40047     Execute a batch file of SQL commands
  40. 40048    /*\nSelect Statement\nSource : mySQL documentation\n*/\nSELECT [ STRAIGHT_JOIN ]  [ SQL_SMALL_RESULT ]  \n    [ SQL_BIG_RESULT ]  [ SQL_BUFFER_RESULT ]         [ HIGH_PRIORITY ]  \n        [ DISTINCT | DISTINCT ROW | ALL ] \n    select_expression,... \n    [ INTO {OUTFILE | DUMPFILE} \'file_name\' export_options ] \n    [ FROM table_references[ WHERE where_definition ]\n    [ GROUP BY {unsigned_integer | col_name | formula} [ ASC | DESC ], ... ]\n    [ HAVING where_definition ]\n    [ ORDER BY {unsigned_integer | col_name | formula} [ ASC | DESC ] ,... ]\n    [ LIMIT [ offset, ] rows ]\n    [ PROCEDURE procedure_name ]\n    FOR UPDATE | LOCK IN SHARE MODE ] ]
  41. 40049    /*\nJoin Statement\nSource : mySQL documentation\n*/\ntable_reference, table_reference\ntable_reference [ CROSS ] JOIN table_reference\ntable_reference INNER JOIN table_reference join_condition\ntable_reference STRAIGHT_JOIN table_reference\n\ntable_reference LEFT [ OUTER ] JOIN table_reference join_condition\ntable_reference LEFT [ OUTER ] JOIN table_reference\ntable_reference NATURAL [ LEFT [ OUTER ] ] JOIN table_reference\n{ oj table_reference LEFT OUTER JOIN table_reference ON conditional_expr }\ntable_reference RIGHT [ OUTER ] JOIN table_reference join_condition\ntable_reference RIGHT [ OUTER ] JOIN table_reference\ntable_reference NATURAL [ RIGHT [ OUTER ] ] JOIN table_reference
  42. 40050    /*\nInsert Statement\nSource : mySQL documentation\n*/\nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]\n    [ INTO ] tbl_name [ (col_name,...) ]\n    VALUES (expression,...),(...),...\n\nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]\n    [ INTO ] tbl_name [ (col_name,...) ]\n    SELECT ...\n\nINSERT [ LOW_PRIORITY | DELAYED ] [ IGNORE ]\n    [ INTO ] tbl_name\n    SET col_name=expression, col_name=expression, ...
  43. 40051    /*\nInsert_Select Statement\nSource : mySQL documentation\n*/\nINSERT [ LOW_PRIORITY ] [ IGNORE ] [ INTO ] tbl_name \n    [ (column list) ] SELECT ...
  44. 40052    /*\nUpdate Statement\nSource : mySQL documentation\n*/\nUPDATE [ LOW_PRIORITY ] [ IGNORE ] tbl_name\n    SET col_name1=expr1, [ col_name2=expr2, ... ]\n    [ WHERE where_definition ]\n    [ LIMIT # ]
  45. 40053    /*\nDelete Statement\nSource : mySQL documentation\n*/\nDELETE [ LOW_PRIORITY ] FROM tbl_name\n    [ WHERE where_definition ]\n    [ LIMIT rows ]
  46. 40054    /*\nTruncate Statement\nSource : mySQL documentation\n*/\nTRUNCATE TABLE table_name
  47. 40055    /*\nReplace Statement\nSource : mySQL documentation\n*/\nREPLACE [ LOW_PRIORITY | DELAYED ]\n    [ INTO ] tbl_name [ (col_name,...) ]\n    VALUES (expression,...),(...),...\n\nREPLACE [ LOW_PRIORITY | DELAYED ]\n    [ INTO ] tbl_name [ (col_name,...) ]\n    SELECT ...\n    REPLACE [ LOW_PRIORITY | DELAYED ]\n    [ INTO ] tbl_name\n    SET col_name=expression, col_name=expression,...
  48. 40056    /*\nLoaddata Statement\nSource : mySQL documentation\n*/\nLOAD DATA [ LOW_PRIORITY | CONCURRENT ] [ LOCAL ] \n    INFILE 'file_name.txt'\n    [ REPLACE | IGNORE ]\n    INTO TABLE tbl_name\n    [ FIELDS\n        [ TERMINATED BY '' ]\n        [ [ OPTIONALLY ] ENCLOSED BY '' ]\n        \n        [ ESCAPED BY '\'  ]\n     ]\n    [ LINES TERMINATED BY '' ]\n    [ IGNORE number LINES ]\n    [ (col_name,...) ]
  49. 40057    /*\nCreate Table Statement\nSource : mySQL documentation\n*/\nCREATE [ TEMPORARY ] TABLE [ IF NOT EXISTS ] \n    tbl_name [ (create_definition,...) ]\n    [ table_options ] [ select_statement ]
  50. 40058    /*\nCreate Database Statement\nSource : mySQL documentation\n*/\nCREATE DATABASE [ IF NOT EXISTS ] db_name 
  51. 40059    /*\nDrop database Statement\nSource : mySQL documentation\n*/\nDROP DATABASE [ IF EXISTS ] db_name 
  52. 40060    /*\nDrop table Statement\nSource : mySQL documentation\n*/\nDROP TABLE [ IF EXISTS ] tbl_name [ , tbl_name,... ] \n    [ RESTRICT | CASCADE ]
  53. 40061    /*\nAlter table Statement\nSource : mySQL documentation\n*/\nALTER [ IGNORE ] TABLE tbl_name alter_spec \n    [ , alter_spec ... ]
  54. 40062    /*\nRename table Statement\nSource : mySQL documentation\n*/\nRENAME TABLE tbl_name TO new_table_name[ , tbl_name2 TO \n    new_table_name2,... ]
  55. 40064    /*\nUSE Statement\nSource : mySQL documentation\n*/\nUSE db_name
  56. 40065    /*\nDESCRIBE Statement\nSource : mySQL documentation\n*/\n{ DESCRIBE | DESC } tbl_name {col_name | wild}
  57. 40067    /*\nBEGIN/COMMMIT/ROLLBACK Statement\nSource : mySQL documentation\n*/\nBEGIN;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summmary=@A WHERE type=1;\nCOMMIT;\nROLLBACK
  58. 40068    /*\nBEGIN/COMMMIT/ROLLBACK Statement\nSource : mySQL documentation\n*/\nBEGIN;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summmary=@A WHERE type=1;\nCOMMIT;\nROLLBACK
  59. 40069    /*\nBEGIN/COMMMIT/ROLLBACK Statement\nSource : mySQL documentation\n*/\nBEGIN;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summmary=@A WHERE type=1;\nCOMMIT;\nROLLBACK
  60. 40070    /*\nLOCK/UNLOCK Statement\nSource : mySQL documentation\n*/\nLOCK TABLES tbl_name [ AS alias ] { READ | [ READ LOCAL ] | \n    [ LOW_PRIORITY ] WRITE }\n    [ , tbl_name { READ | [ LOW_PRIORITY ] WRITE } ... ]\n...\nUNLOCK TABLES
  61. 40071    /*\nLOCK/UNLOCK Statement\nSource : mySQL documentation\n*/\nLOCK TABLES tbl_name [ AS alias ] {READ | [ READ LOCAL ] | \n    [ LOW_PRIORITY ] WRITE}\n        [ , tbl_name {READ | [ LOW_PRIORITY ] WRITE} ... ]\n...\nUNLOCK TABLES
  62. 40072    /*\nTransaction Statement\nSource : mySQL documentation\n*/\nSET [ GLOBAL | SESSION ] TRANSACTION ISOLATION LEVEL\n[ READ UNCOMMITTED | READ COMMITTED | \n  REPEATABLE READ | SERIALIZABLE ]
  63. 40073    /*\nCreate Index Statement\nSource : mySQL documentation\n*/\nCREATE [ UNIQUE| FULLTEXT ] INDEX index_name \n    ON tbl_name (col_name[ (length) ],... ]
  64. 40074     Redoes the previously undone action
  65. 40077     Execute Current Query
  66. 40079     Selects the entire selection
  67. 40080     Refresh ObjectBrowser
  68. 40082     Drop the currently selected database
  69. 40083     Drop the currently selected table
  70. 40084     Create a valid SQL INSERT for the table
  71. 40086     Manage personal folder
  72. 40095     Execute Current Query
  73. 40097     Show the HELP file for SQLyog
  74. 40098     Execute Selected Query(s)
  75. 40099     Execute All Queries
  76. 40101     Create a new table in the selected database
  77. 40107     Create Table
  78. 40116     CHECK/REPAIR/ANALYZE/OPTIMIZE your table
  79. 40118     Show results in text mode
  80. 40129     Finds the specified text
  81. 40130     Finds the specified text and replaces it with a different text
  82. 40133     Show or Hides the object browser
  83. 40137     Flush logs, privileges, hosts etc.
  84. 40139     Show templates for SQL commands
  85. 40140     Export Resultset in XML/CSV/HTML
  86. 40141    /*\nBackup / Restore Statement\nSource : mySQL documentation\n*/\nBACKUP TABLE tbl_name[,tbl_name...] TO '/path/to/backup/directory'\n\nRESTORE TABLE tbl_name[,tbl_name...] FROM '/path/to/backup/directory'
  87. 40150     Rename the table
  88. 40151     Select some data for the table
  89. 40152     Truncate data of the selected table
  90. 40153     View advanced properties of the selected table
  91. 40155     Drop the selected column
  92. 40156     Create Schema for the database in HTML
  93. 40157     Create a new window with the current connection
  94. 40162     Make of copy of the table in the database
  95. 40165     Alter table structure of the selected table
  96. 40166     Add a user and set its Global Privileges
  97. 40167     Edit a existing users Global Privileges
  98. 40170     Insert and Update data of the table
  99. 40180     Create a new database
  100. 40184     Change the table handler to ISAM
  101. 40185     Change the table handler to MyISAM
  102. 40186     Change the table handler to HEAP
  103. 40187     Change the table handler to MERGE
  104. 40188     Change the table handler to InnoDB
  105. 40189     Change the table handler to BDB
  106. 40190     Change the table handler to GEMINI
  107. 40191     Create and Edit Indexes for the table
  108. 40192     Give Database, Table and Column level privileges to a user
  109. 40196     Export data of the selected table as Comma Separated Values
  110. 40197     Import data into the table from a CSV file
  111. 40198     Backup the selected database using BACKUP command
  112. 40199     Restore a database using RESTORE command
  113. 40200     Show or Hide the Result Window
  114. 40201     Open the Personal SQL in the current connection
  115. 40202     Open the Personal SQL in the current connection
  116. 40203     Open the Personal SQL in the current connection
  117. 40204     Open the Personal SQL in the current connection
  118. 40205     Open the Personal SQL in the current connection
  119. 40206     Drop the currently selected Index
  120. 40214     Export data of the selected database as SQL query(s)
  121. 40215     Export data of the selected table as SQL query(s)
  122. 40219     Clear the Query Editor
  123. 40220     Create and edit indexes for the table
  124. 40223     Synchronize structure of two tables
  125. 40225     Reorder Columns of the selected table
  126. 40226     Import data from an ODBC datasource to MySQL
  127. 40227     Manage User Permissions
  128. 40228     Flush
  129. 40229     Table Diagnostics
  130. 40230     Copy the selected database to another Host/DB
  131. 40231     Drop all table(s) of the selected database
  132. 40232     Show or Hide the SQL Editor
  133. 40234     Execute For Update
  134. 40239     Show Values
  135. 40240     Export Data As Batch Scripts
  136. 40241     Execute Batch File
  137. 40242     Manage FK Relationships for the selected table
  138. 40243     Insert/Update Data For The Table
  139. 40244     Alter Table Structure
  140. 40245     Truncate data for ALL table(s) in the selected database
  141. 40246     Manage Relationships For Table
  142. 40248     Export data of the selected table in HTML
  143. 40254     Export data of selected table in XML
  144. 40256     Show processlist
  145. 40257     Show status
  146. 40258     Synchronize data of two databases
  147. 40259    Provide details about SOURCE and TARGET MySQL Servers
  148. 40260     
  149. 40261    Select table(s) that you want to synchronize
  150. 40262    Selecting [ALL] will inform the tool to sync all the tables present in the source database. You can select particular columns to be used for checking unique rows or click on (...) to specify a WHERE clause.
  151. 40263    What do you want to do with the JOB?
  152. 40264    Choose an option that you want to perform
  153. 40265     Manage Jobs for SQLyog Job Agent
  154. 40266     Set your preferences for the application
  155.